From: GNU Libc Maintainers Date: Sun, 1 Mar 2026 20:10:06 +0000 (+0100) Subject: unsubmitted-quiet-ldconfig X-Git-Tag: archive/raspbian/2.41-12+rpi1+deb13u2^2~27 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/%22mailto:tmurad%40gmail.com//%22mailto:i18n-csb%40linuxcsb.org/%22/%22http:/www.example.com/%22mailto:tmurad%40gmail.com/%22mailto:i18n-csb%40linuxcsb.org/%22?a=commitdiff_plain;h=30d785580b510b41d3ff836c6823c754ede95b48;p=glibc.git unsubmitted-quiet-ldconfig Gbp-Pq: Topic i386 Gbp-Pq: Name unsubmitted-quiet-ldconfig.diff --- diff --git a/sysdeps/x86/readelflib.c b/sysdeps/x86/readelflib.c index acb25d710..f036eee60 100644 --- a/sysdeps/x86/readelflib.c +++ b/sysdeps/x86/readelflib.c @@ -46,8 +46,11 @@ process_elf_file (const char *file_name, const char *lib, int *flag, break; /* Fall through. */ default: - error (0, 0, _("%s is for unknown machine %d.\n"), - file_name, elf_header->e_machine); + if (opt_verbose) + { + error (0, 0, _("%s is for unknown machine %d.\n"), + file_name, elf_header->e_machine); + } return 1; }